home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / e33el2.zip / emacs / 19.33 / lisp / appt.el < prev    next >
Lisp/Scheme  |  1996-08-04  |  21KB  |  601 lines

  1. ;;; appt.el --- appointment notification functions.
  2.  
  3. ;; Copyright (C) 1989, 1990, 1994 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
  6. ;; Maintainer: FSF
  7. ;; Keywords: calendar
  8.  
  9. ;; This file is part of GNU Emacs.
  10.  
  11. ;; GNU Emacs is free software; you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation; either version 2, or (at your option)
  14. ;; any later version.
  15.  
  16. ;; GNU Emacs is distributed in the hope that it will be useful,
  17. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ;; GNU General Public License for more details.
  20.  
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with GNU Emacs; see the file COPYING.  If not, write to the
  23. ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  24. ;; Boston, MA 02111-1307, USA.
  25.  
  26. ;;; Commentary:
  27.  
  28. ;;
  29. ;; appt.el - visible and/or audible notification of
  30. ;;           appointments from ~/diary file generated from
  31. ;;           Edward M. Reingold's calendar.el.
  32. ;;
  33. ;;
  34. ;; Comments, corrections, and improvements should be sent to
  35. ;; Neil M. Mager
  36. ;; Net                     <neilm@juliet.ll.mit.edu>
  37. ;; Voice                   (617) 981-4803
  38. ;;;
  39. ;;; Thanks to  Edward M. Reingold for much help and many suggestions, 
  40. ;;; And to many others for bug fixes and suggestions.
  41. ;;;
  42. ;;;
  43. ;;; This functions in this file will alert the user of a 
  44. ;;; pending appointment based on their diary file.
  45. ;;;
  46. ;;;
  47. ;;; ******* It is necessary to invoke 'display-time' ********
  48. ;;; *******  and 'diary' for this to work properly.  ********
  49. ;;; 
  50. ;;; A message will be displayed in the mode line of the emacs buffer
  51. ;;; and (if the user desires) the terminal will beep and display a message
  52. ;;; from the diary in the mini-buffer, or the user may select to 
  53. ;;; have a message displayed in a new buffer.
  54. ;;;
  55. ;;; The variable 'appt-message-warning-time' allows the
  56. ;;; user to specify how much notice they want before the appointment. The 
  57. ;;; variable 'appt-issue-message' specifies whether the user wants
  58. ;;; to to be notified of a pending appointment.
  59. ;;; 
  60. ;;; In order to use, the following should be in your .emacs file in addition to
  61. ;;; creating a diary file and invoking calendar:
  62. ;;;
  63. ;;;    Set some options
  64. ;;; (setq view-diary-entries-initially t)
  65. ;;; (setq appt-issue-message t)
  66. ;;;
  67. ;;;   The following three lines are required:
  68. ;;; (display-time)
  69. ;;; (add-hook 'diary-hook 'appt-make-list)
  70. ;;;
  71. ;;; 
  72. ;;;  This is an example of what can be in your diary file:
  73. ;;; Monday
  74. ;;;   9:30am Coffee break
  75. ;;;  12:00pm Lunch        
  76. ;;; 
  77. ;;; Based upon the above lines in your .emacs and diary files, 
  78. ;;; the calendar and diary will be displayed when you enter
  79. ;;; emacs and your appointments list will automatically be created.
  80. ;;; You will then be reminded at 9:20am about your coffee break
  81. ;;; and at 11:50am to go to lunch. 
  82. ;;;
  83. ;;; Use describe-function on appt-check for a description of other variables
  84. ;;; that can be used to personalize the notification system.
  85. ;;;
  86. ;;;  In order to add or delete items from todays list, use appt-add
  87. ;;;  and appt-delete.
  88. ;;;
  89. ;;;  Additionally, the appointments list is recreated automatically
  90. ;;;  at 12:01am for those who do not logout every day or are programming
  91. ;;;  late.
  92. ;;;
  93. ;;; Brief internal description - Skip this if your not interested!
  94. ;;;
  95. ;;; The function appt-check is run from the 'loadst' process which is started
  96. ;;; by invoking (display-time). A temporary function below modifies
  97. ;;; display-time-filter 
  98. ;;; (from original time.el) to include a hook which will invoke appt-check.
  99. ;;; This will not be necessary in the next version of gnuemacs.
  100. ;;;
  101. ;;;
  102. ;;; The function appt-make-list creates the appointments list which appt-check
  103. ;;; reads. This is all done automatically.
  104. ;;; It is invoked from the function list-diary-entries.
  105. ;;;
  106. ;;; You can change the way the appointment window is created/deleted by
  107. ;;; setting  the variables
  108. ;;;
  109. ;;;         appt-disp-window-function
  110. ;;; and
  111. ;;;          appt-delete-window-function
  112. ;;;
  113. ;;; For instance, these variables can be set to functions that display
  114. ;;; appointments in pop-up frames, which are lowered or iconified after
  115. ;;; appt-display-interval seconds.
  116. ;;;
  117.  
  118. ;;; Code:
  119.  
  120. ;; Make sure calendar is loaded when we compile this.
  121. (require 'calendar)
  122.  
  123. (provide 'appt)
  124.  
  125. ;;;###autoload
  126. (defvar appt-issue-message t
  127.   "*Non-nil means check for appointments in the diary buffer.
  128. To be detected, the diary entry must have the time
  129. as the first thing on a line.")
  130.  
  131. ;;;###autoload
  132. (defvar appt-message-warning-time 12
  133.   "*Time in minutes before an appointment that the warning begins.")
  134.  
  135. ;;;###autoload
  136. (defvar appt-audible t
  137.   "*Non-nil means beep to indicate appointment.")
  138.  
  139. ;;;###autoload
  140. (defvar appt-visible t
  141.   "*Non-nil means display appointment message in echo area.")
  142.  
  143. ;;;###autoload
  144. (defvar appt-display-mode-line t
  145.   "*Non-nil means display minutes to appointment and time on the mode line.")
  146.  
  147. ;;;###autoload
  148. (defvar appt-msg-window t
  149.   "*Non-nil means display appointment message in another window.")
  150.  
  151. ;;;###autoload
  152. (defvar appt-display-duration 10
  153.   "*The number of seconds an appointment message is displayed.")
  154.  
  155. ;;;###autoload
  156. (defvar appt-display-diary t
  157.   "*Non-nil means to display the next days diary on the screen. 
  158. This will occur at midnight when the appointment list is updated.")
  159.  
  160. (defvar appt-time-msg-list nil
  161.   "The list of appointments for today.
  162. Use `appt-add' and `appt-delete' to add and delete appointments from list.
  163. The original list is generated from the today's `diary-entries-list'.
  164. The number before each time/message is the time in minutes from midnight.")
  165.  
  166. (defconst max-time 1439
  167.   "11:59pm in minutes - number of minutes in a day minus 1.")
  168.  
  169. (defvar appt-display-interval 3
  170.   "*Number of minutes to wait between checking the appointment list.")
  171.   
  172. (defvar appt-buffer-name " *appt-buf*"
  173.   "Name of the appointments buffer.")
  174.   
  175. (defvar appt-disp-window-function 'appt-disp-window
  176.   "Function called to display appointment window.")
  177.   
  178. (defvar appt-delete-window-function 'appt-delete-window
  179.   "Function called to remove appointment window and buffer.")
  180.  
  181. (defun appt-check ()
  182.   "Check for an appointment and update the mode line.
  183. Note: the time must be the first thing in the line in the diary
  184. for a warning to be issued.
  185.  
  186. The format of the time can be either 24 hour or am/pm.
  187. Example: 
  188.  
  189.                02/23/89
  190.                  18:00 Dinner
  191.             
  192.               Thursday
  193.                 11:45am Lunch meeting.
  194.  
  195. The following variables control the action of the notification:
  196.  
  197. appt-issue-message
  198.     If T, the diary buffer is checked for appointments.
  199.  
  200. appt-message-warning-time
  201.     Variable used to determine if appointment message
  202.     should be displayed.
  203.  
  204. appt-audible
  205.     Variable used to determine if appointment is audible.
  206.     Default is t.
  207.  
  208. appt-visible
  209.     Variable used to determine if appointment message should be
  210.     displayed in the mini-buffer. Default is t.
  211.  
  212. appt-msg-window
  213.     Variable used to determine if appointment message
  214.     should temporarily appear in another window. Mutually exclusive
  215.     to appt-visible.
  216.  
  217. appt-display-duration
  218.     The number of seconds an appointment message
  219.     is displayed in another window.
  220.  
  221. appt-display-interval
  222.     The number of minutes to wait between checking the appointments
  223.     list.
  224.  
  225. appt-disp-window-function 
  226.         Function called to display appointment window. You can customize
  227.     appt.el by setting this variable to a function different from the
  228.     one provided with this package.
  229.   
  230. appt-delete-window-function 
  231.         Function called to remove appointment window and buffer.  You can
  232.     customize appt.el by setting this variable to a function different
  233.     from the one provided with this package.
  234.  
  235. This function is run from the loadst process for display time.
  236. Therefore, you need to have `(display-time)' in your .emacs file."
  237.  
  238.  
  239.   (if (or (=